home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 10 - 1994 / 10.09 Sep 94 / Getting Started / main.cp < prev    next >
Encoding:
Text File  |  1994-08-19  |  284 b   |  22 lines  |  [TEXT/R*ch]

  1. //main.cp
  2.  
  3. #include <iostream.h>
  4. #include "CJunior.h"
  5.  
  6. //---------------------------------------  main
  7.  
  8. int    main()
  9. {
  10.     CJunior        *juniorPtr;
  11.     
  12.     juniorPtr = new CJunior;
  13.     
  14.     cout << "----\n";
  15.     
  16. //    juniorPtr->grampsDataMember = 1; <--This won't compile
  17.     
  18.     delete juniorPtr;
  19.     
  20.     return 0;
  21. }
  22.